home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / whttpd14.zip / SUPPORT / LOGCYCLE / GETOPT.H < prev    next >
C/C++ Source or Header  |  1994-06-05  |  292b  |  15 lines

  1. /*
  2.  
  3.    getopt.h
  4.  
  5.    Update history:
  6.  
  7.       01Oct89 Add function prototype for getopt                      ahd
  8.   */
  9.  
  10. #define getopt(x,y,z)   GETOPT(x,y,z)  /* Avoid GNU conflict   */
  11. extern int getopts(int argc, char **argv, char *opts);
  12.  
  13. extern int optind;
  14. extern char *optarg;
  15.